{% extends 'base_dashboard.html' %} {% block title %}{{ lesson.title }} — Online LMS{% endblock %} {% block content %}

{{ lesson.title }}

{% if lesson.video_url %}
{% if 'youtube' in lesson.video_url or 'youtu.be' in lesson.video_url %} {% with video_id=lesson.video_url|slice:"-11:" %} {% endwith %} {% else %} {% endif %}
{% elif lesson.video_file %}
{% endif %} {% if lesson.content %}
Lesson Content
{{ lesson.content|linebreaks }}
{% endif %} {% if lesson.attachment %}
Lesson Attachment
Download supplementary material
Download
{% endif %}
{% if prev_lesson %} Previous: {{ prev_lesson.title|truncatechars:25 }} {% else %} {% endif %} {% if next_lesson %} Next: {{ next_lesson.title|truncatechars:25 }} {% endif %}
Course Outline
{% for mod in course.modules.all %}
{{ mod.title }}
{% for les in mod.lessons.all %} {% if les.video_url or les.video_file %} {% else %} {% endif %} {{ les.title }} {% endfor %} {% endfor %}
{% endblock %}